Use this JavaScript Applet to determine monthly mortgage payments.
Please note: These payment numbers are not warranted, nor are they likely to be accurate.
Calculating payments:
function calculate(aform) { // Recover the information from the form var totalPayments = (aform.YEARS.options.selectedIndex + 2) * 60 var monthlyInterest = (parseFloat(aform.RATE.value) / 1200) var principle = (aform.PRINC.options.selectedIndex + 1)*10000 // Compute the monthly payments using JavaScript math and // a standard compound interest formula var num = Math.pow(1 + monthlyInterest, totalPayments) var monthly = principle * monthlyInterest * num / (num - 1) // Update the form aform.MONTHLY.value = "$"+stripDigits(monthly, 2) aform.TOTAL.value = "$" + stripDigits(monthly * totalPayments, 2) aform.INTEREST.value = "$" + stripDigits(monthly * totalPayments - principle, 2) }